home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
Quill
/
Source
/
BasePaneEditor.cpp
< prev
next >
Wrap
Text File
|
1997-08-07
|
1KB
|
51 lines
/*
* File: BasePaneEditor.cpp
* Summary: Abstract base class for view's that edit pane objects.
* Written by: Jesse Jones
*
* Copyright ゥ 1996 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 10/15/96 JDJ Created
*/
#include "BasePaneEditor.h"
// ===================================================================================
// CRootPaneEditor
// ===================================================================================
//---------------------------------------------------------------
//
// CRootPaneEditor::~CRootPaneEditor
//
//---------------------------------------------------------------
CRootPaneEditor::~CRootPaneEditor()
{
}
//---------------------------------------------------------------
//
// CRootPaneEditor::CRootPaneEditor
//
//---------------------------------------------------------------
CRootPaneEditor::CRootPaneEditor(TView* superView) : TView("????", superView, kZeroRect)
{
}
//---------------------------------------------------------------
//
// CRootPaneEditor::Validate
//
//---------------------------------------------------------------
bool CRootPaneEditor::Validate()
{
return true;
}